VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Utils Namespace / ObjectSetListenerEventArgs<T> Class / ObjectSetListenerEventArgs<T> Constructor(T[],T[])
Syntax Requirements SeeAlso
In This Topic
    ObjectSetListenerEventArgs<T> Constructor(T[],T[])
    In This Topic
    Initializes a new instance of the ObjectSetListenerEventArgs<T> class.
    Syntax
    'Declaration
    
    Public Function New( _
    ByVal removedElements
    The elements that are removed from a set.
    () As T, _
    ByVal newElements
    The new elements that are added in to a set.
    () As T _
    )
    public ObjectSetListenerEventArgs<T>(
    T[] removedElements,
    T[] newElements
    )
    public: ObjectSetListenerEventArgs<T>(
    T*[]* removedElements,
    T*[]* newElements
    )
    public:
    ObjectSetListenerEventArgs<T>(
    array<T^>^ removedElements,
    array<T^>^ newElements
    )

    Parameters

    removedElements
    The elements that are removed from a set.
    newElements
    The new elements that are added in to a set.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also